home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / src.arc / MBUF.H < prev    next >
C/C++ Source or Header  |  1989-08-18  |  2KB  |  53 lines

  1. #ifndef    NULLBUF
  2.  
  3. #include <stdio.h>
  4. #include "global.h"
  5.  
  6. /* Basic message buffer structure */
  7. struct mbuf {
  8.     struct mbuf *next;    /* Links mbufs belonging to single packets */
  9.     struct mbuf *anext;    /* Links packets on queues */
  10.     int16 size;        /* Size of associated data buffer */
  11.     int refcnt;        /* Reference count */
  12.     struct mbuf *dup;    /* Pointer to duplicated mbuf */
  13.     char *data;        /* Active working pointers */
  14.     int16 cnt;
  15. };
  16. #define    NULLBUF    (struct mbuf *)0
  17. #define    NULLBUFP (struct mbuf **)0
  18.  
  19. /* In mbuf.c: */
  20. void enqueue __ARGS((struct mbuf **q,struct mbuf *bp));
  21. void hex_dump __ARGS((struct mbuf **bpp));
  22. void ascii_dump __ARGS((struct mbuf **bpp));
  23. void append __ARGS((struct mbuf **bph,struct mbuf *bp));
  24. void free_q __ARGS((struct mbuf **q));
  25. void trim_mbuf __ARGS((struct mbuf **bpp,int16 length));
  26. struct mbuf *alloc_mbuf __ARGS((int16 size));
  27. struct mbuf *free_mbuf __ARGS((struct mbuf *bp));
  28. struct mbuf *dequeue __ARGS((struct mbuf **q));
  29. struct mbuf *copy_p __ARGS((struct mbuf *bp,int16 cnt));
  30. struct mbuf *free_p __ARGS((struct mbuf *bp));
  31. struct mbuf *qdata __ARGS((char *data,int16 cnt));
  32. struct mbuf *pushdown __ARGS((struct mbuf *bp,int16 size));
  33. int16 pullup __ARGS((struct mbuf **bph,char *buf,int16 cnt));
  34. int16 dup_p __ARGS((struct mbuf **hp,struct mbuf *bp,int16 offset,int16 cnt));
  35. int16 len_mbuf __ARGS((struct mbuf *bp));
  36. int16 dqdata __ARGS((struct mbuf *bp,char *buf,unsigned cnt));
  37. int16 len_q __ARGS((struct mbuf *bp));
  38. int32 pull32 __ARGS((struct mbuf **bpp));
  39. int32 get32 __ARGS((char *cp));
  40. int16 pull16 __ARGS((struct mbuf **bpp));
  41. int16 get16 __ARGS((char *cp));
  42. char pullchar __ARGS((struct mbuf **bpp));
  43. char *put16 __ARGS((char *cp,int16 x));
  44. char *put32 __ARGS((char *cp,int32 x));
  45. int write_p __ARGS((FILE *fp,struct mbuf *bp));
  46.  
  47. #define    AUDIT(bp)    audit(bp,__FILE__,__LINE__)
  48.  
  49.  
  50. #endif    /* NULLBUF */
  51.  
  52.  
  53.